home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SOLAR / Vector Processors / Slice / subrange < prev   
Text File  |  1998-10-23  |  214b  |  8 lines

  1. subrange from n sequence 
  2.  
  3. Returns a subrange of a sequence starting from given position n elements long. Works with vectors and lists.
  4.  
  5. (subrange 1 2 '(1 2 3 4 5))
  6. --> (2 3)
  7. (subrange 1 2 '#(1 2 3 4 5))
  8. --> #(2 3)